from_text

pure static function from_text(value: text): big_integer

Creates a big_integer from a text representation

Since

0.12.0

Parameters

value

The decimal string representation.


pure static function from_text(value: text, radix: integer): big_integer

Creates a big_integer from a string representation with a specific base (radix, from 2 to 36).

Since

0.12.0

Parameters

value

The string representation.

radix

The radix to be used in interpreting value. Must be between 2 and 36.